Przykad A.2. Zadanie opisujce dodawanie liczb
extern int numElements;      /* rozmiar n */
void problemUsage() { /* nic */ }
void prepareInput() { /* nic */ }
void postInputProcessing { /* nic */ }

void execute() {
   int x;
   long sum = 0;
   for (x = 1; x <= numElements; x++) { sum +=x; }
}
